/*CSS RESET*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}


/* END OF CSS RESET */

html {
    overflow: hidden;
}

#container {
    display: grid;
    grid-template-areas: 
        "navbar navbar"
        "content1 content1";
    background-color: red;
    color: white;
    margin: 0px
}

.navbar {
    display: flex;
    flex-direction: row;
    flex-flow: reverse;
    align-items: center;
    grid-area: navbar;
    background-color: rgb(111, 171, 206);
    color: black;
    padding-left: 30px;
}

.content1 {
    grid-area: content1;
    display: flex;
}

.my-button {
  background-color: #52c256;  
  color: rgb(0, 0, 0);
  box-shadow: 3px 3px 3px;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.my-button:hover {
  background-color: #45a049;
}

.link {
    padding-top: 10px;
}

.nav {
    margin-left: 60%;
    width: 40%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin-top: 5px;
    padding-right: 40px;
}

.BigImage {
    width: 100%;
}

.ShopNOW {
    position: absolute;
    width: 295px;
    height: 125px;
    top: 300px;
    left: 115px;
    background-color: #E80000;
    border-radius: 10px;
    font-size: 45px;
    color: white;
    font-family: 'Times New Roman';
    box-shadow: 5px 5px 10px black;
    border: 0;
}

.Slogan {
    position: absolute;
    top: 200px;
    left: 100px;
    font-size: 40px;
}